cursor position - traduction vers Anglais
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

cursor position - traduction vers Anglais

DATABASE CURSOR
Database cursor; SQL Cursor; Cursor (database)

cursor position      
Cursorposition, die Position an der sich der Cursor befindet
foetal position         
THE POSITIONING OF THE BODY OF A PRENATAL FETUS AS IT DEVELOPS
Foetal position; Fetal Position; Fetal positions; Fetal pose; Foetal pose
fötale Position
mouse pointer         
  • An example of a 3D cursor in a 3D modeling environment (center).
  • A ''wait'' cursor replaces the pointer with an hourglass.
  • The common cursor roles for a cursor set.
  • A blinking text cursor while typing ''Wikipedia''.
PART OF A COMPUTER UI THAT INDICATES THE POSITION (TEXTUAL OR GRAPHICAL) THAT OPERATIONS WILL AFFECT
Mouse pointer; SBOD; Mouse cursor; SBBOD; Spinning pizza of death; Pointer trails; Mouse pointer trails; Mouse trails; Beachballed; Spinning wait cursor (Mac OS X); Cursor hotspot; Cursor Hotspot; SWOD; Cursor editor; Text cursor; Cursor hovering text information; Pinwheel of death; Animated cursor; Cursor (GUI); Pointer (user interface); Pointer (computing WIMP); Spinning wait cursor; Wait cursor; Keyboard focus; Cursor (computers); The spinning wheel of death; Cursor (computing); Pointer (graphical user interfaces); ARC bug; Engelbart bug; Augmentation Research Center bug; Bug (computer mouse)
Mauszeiger, ein Zeiger auf dem Bildschirm den man mit Hilfe der Maus bewegen kann

Définition

cursor
1. <hardware> A visually distinct mark on a display indicating where newly typed text will be inserted. The cursor moves as text is typed and, in most modern editors, can be moved around within a document by the user to change the insertion point. 2. <database> In SQL, a named control structure used by an application program to point to a row of data. The position of the row is within a table or view, and the cursor is used interactively so select rows from columns. (1996-12-27)

Wikipédia

Cursor (databases)

In computer science, a database cursor is a mechanism that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator.

Cursors are used by database programmers to process individual rows returned by database system queries. Cursors enable manipulation of whole result sets at once. In this scenario, a cursor enables the sequential processing of rows in a result set.

In SQL procedures, a cursor makes it possible to define a result set (a set of data rows) and perform complex logic on a row by row basis. By using the same mechanics, a SQL procedure can also define a result set and return it directly to the caller of the SQL procedure or to a client application.

A cursor can be viewed as a pointer to one row in a set of rows. The cursor can only reference one row at a time, but can move to other rows of the result set as needed.